home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-11-16 | 594 b | 33 lines |
- VPATHDELIM = ;
- VPATH =
-
- #default rules for make
- .SUFFIXES: .obj .a86 .p86 .c .y
- YFLAGS =
- CFLAGS =
- AFLAGS =
- .y.c:
- yacc $YFLAGS $<
- .y.obj:
- yacc $YFLAGS $<
- lcc $CFLAGS -j -c -o $@ $*.c
- del $*.c
- .p86.obj .c.obj:
- lcc $CFLAGS -j -c -o $@ $<
- .a86.obj:
- r86 $AFLAGS -o $@ $<
- .obj.exe .c.exe .a86.exe:
- lcc $CFLAGS -j -o $@ $#
-
- #=====================================================================
-
- fxcdl.exe : fxcdl.obj tspath.obj
- lcc -j -o $@ $#
- echo SUCCESS!
-
- sptest.exe : sptest.obj tspath.obj
- lcc -j -o $@ $#
- echo SUCCESS!
-
- tspath.obj : tspath.c tspath.h
-